From: Richard M. Stallman Date: Wed, 26 Jun 2002 08:34:29 +0000 (+0000) Subject: (frames_bury_buffer): Function deleted. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~56539 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f49067803c0962ec93f737ba40db6a902c2c5beb;p=emacs.git (frames_bury_buffer): Function deleted. --- diff --git a/src/frame.c b/src/frame.c index 795183b2a2f..323e8e4e83e 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1818,26 +1818,6 @@ frames_discard_buffer (buffer) } } -/* Move BUFFER to the end of the buffer-list of each frame. */ - -void -frames_bury_buffer (buffer) - Lisp_Object buffer; -{ - Lisp_Object frame, tail; - - FOR_EACH_FRAME (tail, frame) - { - struct frame *f = XFRAME (frame); - Lisp_Object found; - - found = Fmemq (buffer, f->buffer_list); - if (!NILP (found)) - f->buffer_list = nconc2 (Fdelq (buffer, f->buffer_list), - Fcons (buffer, Qnil)); - } -} - /* Modify the alist in *ALISTPTR to associate PROP with VAL. If the alist already has an element for PROP, we change it. */